home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swagg-m
/
misc.swg
/
0050_BREAK and CONTINUE.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-11-02
|
252b
|
12 lines
{
MARTIN LARSEN
There are at least two nice features in BP7: BREAK and CONTINUE:
}
Repeat
Inc(Count);
if Odd(Count) then Continue; { Go to start of loop }
if Count = 10 then Break; { Go to sentence just after loop }
Until False;